Content for this blog is coming soon. Previous posts can be found here.
The rest of this post is to test the styling for my blog.
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
This is bold text.
This is Italic text
This is underlined text.
A Bulleted list:
one
two
three
An ordered list:
one
two
three
This is a Blockquote
Here is some code:
function playlist(songs) {
const combinations = []
for (let i = 0; i < songs.length; i++) {
for (let j = i + 1; j < songs.length; j++) {
if ((songs[i] + songs[j]) % 60 === 0 ) {
combinations.push([songs[i], songs[j]])
}
}
}
console.log(combinations.length)
}
playlist([10, 50, 90, 30])
An embedded Image: